home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / pcc / v04n12 / batch2.exe / CHEKYES.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-10-12  |  241 b   |  14 lines

  1. @ECHO OFF
  2. REM This is CHEKYES.BAT
  3. IF %1!==! GOTO OOPS
  4. FOR %%A IN (Y y Yes yes YES) DO IF %1==%%A GOTO YES
  5. ECHO You didn't enter Yes
  6. GOTO END
  7. :YES
  8. ECHO You entered Yes
  9.  GOTO END
  10. :OOPS
  11. ECHO You didn't enter anything
  12. GOTO END
  13. :END
  14.